home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / asmutil / disasm.zip / ASMTIPS.DOC < prev    next >
Text File  |  1988-06-03  |  768b  |  22 lines

  1. EPSON PRINTER TIP
  2.  
  3. When using the printer to print your Macro Assembler .LST files, put the
  4. following line at the beginning of your .ASM files to automatically switch the
  5. printer to 132 column mode:
  6.  
  7.     PAGE ,132 ;^O
  8.  
  9. That's a Control-O -seen by the printer but ignored by the assembler. To
  10. automatically revert to 80-column mode at the end of the listing, append a
  11. comment with a Control-R to the last line in your listing: ....;^R
  12.  
  13. USING RADIX 16
  14.  
  15. If you use .RADIX 16 to avoid typing in H's after all your hex numbers, it won't
  16. work for hex 0B or 0D.  This is because the assembler will always interpret them
  17. as meaning the no. is Binary (B) or Decimal (D) - unless they are followed by an
  18. H, i.e. 0BH.
  19.  
  20. Thanks to Boca Raton for these tips.
  21. JW
  22.